home *** CD-ROM | disk | FTP | other *** search
/ Clickx 115 / Clickx 115.iso / software / tools / windows / tails-i386-0.16.iso / live / filesystem.squashfs / etc / init.d / live-config < prev    next >
Encoding:
Text File  |  2012-09-30  |  749 b   |  37 lines

  1. #!/bin/sh
  2.  
  3. ## live-config contains the scripts that configure a Debian Live system during
  4. ## the boot process (late userspace).
  5. ##
  6. ## This is the sysvinit script for live-config.
  7.  
  8.  
  9. ### BEGIN INIT INFO
  10. # Provides:        live-config
  11. # Required-Start:
  12. # Required-Stop:
  13. # Should-Start:
  14. # Should-Stop:
  15. # Default-Start:    S
  16. # Default-Stop:
  17. # Short-Description:    Debian Live - System Configuration Scripts
  18. # Description:        live-config contains the scripts that configure a Debian
  19. #            Live system during the boot process (late userspace).
  20. # X-Start-Before:    mountkernfs
  21. # X-Stop-After:
  22. # X-Interactive:    true
  23. ### END INIT INFO
  24.  
  25. case "${1}" in
  26.     start)
  27.         if [ -e /lib/live/config.sh ]
  28.         then
  29.             /lib/live/config.sh ${@}
  30.         fi
  31.         ;;
  32.  
  33.     force-reload|restart|stop)
  34.  
  35.         ;;
  36. esac
  37.